home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / gets.c < prev    next >
C/C++ Source or Header  |  1988-06-10  |  2KB  |  65 lines

  1. /* 
  2.  * gets.c --
  3.  *
  4.  *    Source code for the "gets" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: gets.c,v 1.1 88/06/10 16:23:54 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include "stdio.h"
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * gets --
  26.  *
  27.  *    Read a line from stdin.
  28.  *
  29.  * Results:
  30.  *    Characters are read from stdin and placed at buf until a
  31.  *    newline is encountered or an end of file or error is encountered.
  32.  *    The newline is read and discarded, and the string at buf is left
  33.  *    null-terminated.  The return value is a pointer to buf if
  34.  *    all went well, or NULL if an end of file or error was encountered.
  35.  *
  36.  * Side effects:
  37.  *    Characters are removed from stream.
  38.  *
  39.  *----------------------------------------------------------------------
  40.  */
  41.  
  42. char *
  43. gets(bufferPtr)
  44.     char *bufferPtr;        /* Where to place characters. */
  45. {
  46.     register char *destPtr = bufferPtr;
  47.     register int c;
  48.     register FILE *stream = stdin;
  49.  
  50.     while (1) {
  51.     c = getc(stream);
  52.     if (c == EOF) {
  53.         *destPtr = 0;
  54.         return NULL;
  55.     }
  56.     if (c == '\n') {
  57.         break;
  58.     }
  59.     *destPtr = c;
  60.     destPtr++;
  61.     }
  62.     *destPtr = 0;
  63.     return bufferPtr;
  64. }
  65.